home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / sbin / fsck.xfs < prev    next >
Text File  |  2009-05-06  |  450b  |  25 lines

  1. #!/bin/sh -f
  2. #
  3. # Copyright (c) 2006 Silicon Graphics, Inc.  All Rights Reserved.
  4. #
  5.  
  6. AUTO=false
  7. while getopts ":aApy" c
  8. do
  9.     case $c in
  10.     a|A|p|y)    AUTO=true;;
  11.     esac
  12. done
  13. eval DEV=\${$#}
  14. if [ ! -e $DEV ]; then
  15.     echo "$0: $DEV does not exist"
  16.     exit 8
  17. fi
  18. if $AUTO; then
  19.     echo "$0: XFS file system."
  20. else
  21.     echo "If you wish to check the consistency of an XFS filesystem or"
  22.     echo "repair a damaged filesystem, see xfs_check(8) and xfs_repair(8)."
  23. fi
  24. exit 0
  25.